name="copyright" value="Javvy.com" (!) |
All Javvy applets are free, but not nameless. You should
include this param exactly as shown. |
|
name="_img" value="imagefileurl" (!) |
Provide url of menu image file here. For example, "images\menu.gif" |
|
name="_bg" value="r|g|b" (!) |
Background color. Par exemple, "255|255|255" is white and "0|0|0" is black. |
|
name="a" value="xa|ya|wa|ha|xa2|ya2|xb|yb|wb|hb|xb2|yb2| url|statustext" (!) |
Let's define two rectangles Ra and Ra2. Ra is (xa,ya,wa,ha), where (xa,ya) is left-top coordinate, (wa) is width and (ha) is height.
Ra2 is (xa2,ya2,wa,ha). When user (mouse) enters Ra, applet will copy part of image, defined as Ra2 into Ra and show "statustext" at status bar of browser. When user clickdown within Ra, applet will
open "url" in the "_target" (see below) frame. And we have two rectangles more: Rb=(xb,yb,wb,hb) and Rb2=(xb2,yb2,wb,hb). When user (mouse) enters Ra, applet will copy part of image,
defined as Rb2 into Rb as well. |
Exempli gratia, we have an image (sammenu0.gif) with height=120 and width=330:

Let's define:
- Ra=(90,0,30,30) - rectangle wrapping "3";
- xa2=90, ya2=40 ( Ra2=(90,40,30,30) ) - "3" from the second line;
- Rb=(90,30,165,10) - rectangle where (below "3") to paint "..description..";
- xb2=0, yb2=90 (Rb2=(0,90,165,10)) - rectangle where to find "..description..";
and write it as parameter "a":
...
<param name=a value="90|0|30|30|90|40|90|30|165|10|0|90">
...
As result, only "3" is active and there is no activities on click (url is not defined):
|
name="b..z" value="xa|ya|wa|ha|xa2|ya2|xb|yb|wb|hb|xb2|yb2| url|statustext" (*) |
define more areas |
|
name="_target" value="framename" (!) |
Valid values: |
"_self" show in the current frame |
"_parent" show in the parent frame |
"_top" show in the top-most frame |
"_blank" show in a new unnamed top-level window |
"name" show in a new top-level window named name |
Note: param is required, so define one of values above
(if you are not using frames set "_target" to "_self) |
|
name="_this" value="a..z" (*) |
Disable "this" page. When using one menu on multiple pages it's good to disable link to current page.
Simply put name of area ('a'..'z') to "_this" param (applet will always copy R2 into R).
Example: on the page you're seing "< parameters" area is disabled. |
|